Class org.omg.CORBA.OBJECT_NOT_EXIST
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.omg.CORBA.OBJECT_NOT_EXIST

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----org.omg.CORBA.SystemException
                                   |
                                   +----org.omg.CORBA.OBJECT_NOT_EXIST

public final class OBJECT_NOT_EXIST
extends SystemException
The CORBA OBJECT_NOT_EXIST exception. These exceptions may be thrown as a result of a CORBA OBJECT_NOT_EXIST and may also be returned by many standard CORBA API methods. It contains a minor code, allowing more detailed specification, and a completion status.

Constructor Index

 o OBJECT_NOT_EXIST()
Constructs a OBJECT_NOT_EXIST with a default minor code of 0 and a completion state of COMPLETED_MAYBE.
 o OBJECT_NOT_EXIST(int, CompletionStatus)
Constructs a OBJECT_NOT_EXIST with the specified minor code and completion status.
 o OBJECT_NOT_EXIST(String)
Constructs a OBJECT_NOT_EXIST with the specified detail.
 o OBJECT_NOT_EXIST(String, int, CompletionStatus)
Constructs a OBJECT_NOT_EXIST with the specified detail message, minor code, and completion status.

Constructors

 o OBJECT_NOT_EXIST
  public OBJECT_NOT_EXIST()
Constructs a OBJECT_NOT_EXIST with a default minor code of 0 and a completion state of COMPLETED_MAYBE.
 o OBJECT_NOT_EXIST
  public OBJECT_NOT_EXIST(String s)
Constructs a OBJECT_NOT_EXIST with the specified detail.
Parameters:
s - the String containing a detail message
 o OBJECT_NOT_EXIST
  public OBJECT_NOT_EXIST(int minor,
                          CompletionStatus completed)
Constructs a OBJECT_NOT_EXIST with the specified minor code and completion status.
Parameters:
minor - the minor code
completed - the completion status
 o OBJECT_NOT_EXIST
  public OBJECT_NOT_EXIST(String s,
                          int minor,
                          CompletionStatus completed)
Constructs a OBJECT_NOT_EXIST with the specified detail message, minor code, and completion status. A detail message is a String that describes this particular exception.
Parameters:
s - the String containing a detail message
minor - the minor code
completed - the completion status

All Packages  Class Hierarchy  This Package  Previous  Next  Index